home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / c68_443b.lzh / MAN / CC68.1 < prev   
Text File  |  1994-07-28  |  1KB  |  79 lines

  1. CC68(1)              USER COMMANDS              CC68(1)
  2.  
  3.  
  4. NAME
  5.  
  6.     cc68 - a simple c68 compiler driver
  7.  
  8. SYNOPSIS
  9.  
  10.     cc68 [options] file [file ..]
  11.  
  12. DESCRIPTION
  13.  
  14.     >>> This document isn't finished yet <<<
  15.  
  16. OPTIONS
  17.  
  18.     -c        Compile, but don't link.
  19.  
  20.     -D name[=val]    Define preprocessor symbol 'name'.
  21.  
  22.     -E        Preprocess to stdout.
  23.  
  24.     -f        Link with libm.a and  make sure  that the floating
  25.             point versions of printf and scanf are being used.
  26.  
  27.     -g        Compile for use with debugger.
  28.  
  29.     -I path        Add 'path' to header file search list.
  30.  
  31.     -l name        Link with '$C68LIB\libname.a'.
  32.  
  33.     -n        Like -v, but don't really do anything.
  34.  
  35.     -o file        Name the output file.
  36.  
  37.     -O        Enable full optimization.
  38.  
  39.     -P        Preprocess, but don't compile.
  40.  
  41.     -Q option    Pass an option to c68.
  42.  
  43.     -S        Compile, but don't assemble.
  44.  
  45.     -t        Don't remove temporary files.
  46.  
  47.     -U name        Undefine preprocessor symbol 'name'.
  48.  
  49.     -v        Verbose mode, cc68 shows what it's doing  (-vv
  50.             will show additional version information about
  51.             the various passes).
  52.  
  53. FILES
  54.  
  55.     cc68 recognizes the following file name extensions:
  56.  
  57.     .c    C source
  58.  
  59.     .i    already preprocessed C source
  60.  
  61.     .s    assembler source
  62.  
  63.     All other files are treated as object files or libraries
  64.     and passed to the linker.
  65.  
  66. ENVIRONMENT
  67.  
  68.     $C68INC        list of search paths for header files
  69.  
  70.     $C68LIB        path for standard library (no list!)
  71.  
  72. AUTHOR
  73.  
  74.     rtroskow@jupiter.rz.uni-osnabrueck.de (Thorsten Roskowetz)
  75.  
  76. SEE ALSO
  77.  
  78.     make(1), cpp(1), c68(1), jas(1), ld(1).
  79.